body {
    margin: 0;
    padding: 0;
}

.SlideShow {
 height: 550px; 
    position: relative;
    /* border-radius: 5px; */
    
    /* float: left; */
    width: 100%;
    margin-top: 0px;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: 50px;
    height:70px;
	line-height:45px;
    padding: 12px;
    /* margin-top: -17px; */
    color: white;
    font-weight: bold;
    background-color: #1866a8;
    opacity: 0.7;
    font-size: 25px;
    transition: 0.6s ease;
    border: none;
    border-radius: 0 3px 3px 0;
	text-align:center;
}
/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: #1866a8;
        opacity: 0.3;
		color:Whitesmoke;
    }

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #1866a8;
	 /* position: relative; */
    opacity: 0.7;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
	
}

.active {
    background-color:Whitesmoke;
    opacity: 0.99;
}

.dot:hover {
    background-color: #1866a8;
    opacity: 0.2;
}

.AboutBlock1 {
    width: 20%;
    height: 22%;
    float: left;
    background-color: rgba(129, 143, 9, 0.89);
    color: white;
    margin-top: 20px;
    text-align: left;
    padding: 10px;
    margin-left: 20px;
    border-radius: 10px;
    overflow: hidden;
    text-transform: capitalize;
}

.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
    visibility: visible;
}


@keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(5%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(5%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}

.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
    visibility: visible;
}


@keyframes slideDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

.dot_div{
	
	text-align: center;
	position: absolute;
	margin-top: -10px; 
	top: 88%;
 margin-left: 45%;
	
}

@media(max-width: 991px){
	
	
	.SlideShow {
 height: 350px; 
    position: relative;
    /* border-radius: 5px; */
    
    /* float: left; */
    width: 100%;
    margin-top: 0px;
	
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 25%;
    width: 40px;
    height:50px;
	line-height:20px;
    padding: 15px;
    /* margin-top: -17px; */
    color: whitesmoke;
    font-weight: bold;
    background-color: #1866a8;
    opacity: 0.99;
    font-size: 16px;
    transition: 0.6s ease;
    border: none;
    border-radius: 0 3px 3px 0;
	/* z-index:888888; */
}
.prev:hover, .next:hover {
        background-color: #1866a8;
        opacity: 0.2;
		cursor: pointer;color: whitesmoke;
		
    }


.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 1px;
    background-color: #1866a8;
	 /* position: relative; */
    opacity: 0.99;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
	/* kz-index:888880; */
	
}

.dot:hover {
    background-color: #1866a8;
    opacity: 0.3;
	cursor: pointer;
}
.active {
    background-color:Whitesmoke;
    
}

.dot_div{
	
	text-align: center;
	position: absolute;
	margin-top: -10px; 
	top: 70%;
 margin-left: 55%;
 	/* z-index:888880; */
	
}	
}



